home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 August / chip_08_2000.iso / aktualnosci / sterowniki / Logitech QuickCam Pro / qc520_e.exe / data1.cab / ApplicationENU / walbum.chm / sniffer.js < prev    next >
Text File  |  2000-04-17  |  1KB  |  70 lines

  1. function SupportsDHTML () {
  2.  
  3.     var     agent;
  4.     var        version;
  5.  
  6.     agent = navigator.userAgent.toLowerCase ();
  7.     version = parseInt (navigator.appVersion);
  8.  
  9.     if (agent.indexOf ("msie") != -1 || agent.indexOf ("mozilla") != -1 || 
  10.         agent.indexOf ("spoofer") != -1 || agent.indexOf ("compatible") != -1) {
  11.  
  12.         if (version >= 4)
  13.             return 1;
  14.         }
  15.  
  16.     return 0;
  17.     };
  18.  
  19.  
  20. function FullDHTML () {
  21.  
  22.     var     agent;
  23.     var    version;
  24.  
  25.     agent = navigator.userAgent.toLowerCase ();
  26.     version = parseInt (navigator.appVersion);
  27.  
  28.     if (agent.indexOf ("msie") != -1) {
  29.  
  30.         if (version >= 4)
  31.             return 1;
  32.         }
  33.  
  34.     return 0;
  35.     };
  36.  
  37.  
  38. function PartialDHTML () {
  39.  
  40.     var     agent;
  41.     var        version;
  42.  
  43.     agent = navigator.userAgent.toLowerCase ();
  44.     version = parseInt (navigator.appVersion);
  45.  
  46.     if (agent.indexOf ("mozilla") != -1 || agent.indexOf ("spoofer") != -1 || 
  47.         agent.indexOf ("compatible") != -1) {
  48.  
  49.         if (version >= 4)
  50.             return 1;
  51.         }
  52.  
  53.     return 0;
  54.     };
  55.  
  56.  
  57. function GetBrowser () {
  58.  
  59.     var     agent;
  60.     var    version;
  61.  
  62.     agent = navigator.userAgent.toLowerCase ();
  63.     version = parseInt (navigator.appVersion);
  64.  
  65.     if (agent.indexOf ("msie") != -1)
  66.         return 1;
  67.  
  68.     return 0;
  69.     };
  70.